home *** CD-ROM | disk | FTP | other *** search
/ GameStar 2005 October / Gamestar_77_2005-10_dvd.iso / Programy / powarc920cz.exe / {app} / POWERARC.EXE / 0 / RCDATA / TPASSWORDFORM / TPASSWORDFORM.txt
Text File  |  2005-03-06  |  1KB  |  56 lines

  1. object PasswordForm: TPasswordForm
  2.   Left = 268
  3.   Top = 216
  4.   BorderStyle = bsDialog
  5.   Caption = 'Password'
  6.   ClientHeight = 71
  7.   ClientWidth = 273
  8.   Color = clBtnFace
  9.   ParentFont = True
  10.   KeyPreview = True
  11.   OldCreateOrder = True
  12.   Scaled = False
  13.   OnClose = FormClose
  14.   OnCreate = FormCreate
  15.   OnKeyPress = FormKeyPress
  16.   OnShow = FormShow
  17.   PixelsPerInch = 96
  18.   TextHeight = 13
  19.   object FPassword: TLabel
  20.     Left = 8
  21.     Top = 8
  22.     Width = 49
  23.     Height = 13
  24.     Caption = '&Password:'
  25.     FocusControl = Password
  26.   end
  27.   object Password: TEdit
  28.     Left = 8
  29.     Top = 24
  30.     Width = 177
  31.     Height = 21
  32.     PasswordChar = '*'
  33.     TabOrder = 0
  34.     Text = 'Password'
  35.   end
  36.   object OKButt: TButton
  37.     Left = 192
  38.     Top = 8
  39.     Width = 75
  40.     Height = 25
  41.     Caption = 'OK'
  42.     Default = True
  43.     TabOrder = 1
  44.     OnClick = OKButtClick
  45.   end
  46.   object CancelButt: TButton
  47.     Left = 192
  48.     Top = 37
  49.     Width = 75
  50.     Height = 25
  51.     Caption = '&Cancel'
  52.     TabOrder = 2
  53.     OnClick = CancelButtClick
  54.   end
  55. end
  56.